home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / mozilla-firefox / include / htmlparser / nsIParserService.h < prev    next >
C/C++ Source or Header  |  2006-05-08  |  6KB  |  164 lines

  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is Mozilla Communicator client code.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  26.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. #ifndef nsIParserService_h__
  39. #define nsIParserService_h__
  40.  
  41. #include "nsISupports.h"
  42. #include "nsString.h"
  43. #include "nsHTMLTags.h"
  44. #include "nsIElementObserver.h"
  45.  
  46. class nsIParser;
  47. class nsIParserNode;
  48.  
  49. #define NS_PARSERSERVICE_CONTRACTID "@mozilla.org/parser/parser-service;1"
  50.  
  51. // {90a92e37-abd6-441b-9b39-4064d98e1ede}
  52. #define NS_IPARSERSERVICE_IID \
  53. { 0x90a92e37, 0xabd6, 0x441b, { 0x9b, 0x39, 0x40, 0x64, 0xd9, 0x8e, 0x1e, 0xde } };
  54.  
  55. // {78081E70-AD53-11d5-8498-0010A4E0C706}
  56. #define NS_IOBSERVERENTRY_IID \
  57. { 0x78081e70, 0xad53, 0x11d5, { 0x84, 0x98, 0x00, 0x10, 0xa4, 0xe0, 0xc7, 0x06 } };
  58.  
  59.  
  60. class nsIObserverEntry : public nsISupports {
  61.  public:
  62.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IOBSERVERENTRY_IID)
  63.  
  64.   NS_IMETHOD Notify(nsIParserNode* aNode,
  65.                     nsIParser* aParser,
  66.                     nsISupports* aWebShell,
  67.                     const PRUint32 aFlags) = 0;
  68.  
  69. };
  70.  
  71.  
  72. class nsIParserService : public nsISupports {
  73.  public:
  74.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IPARSERSERVICE_IID)
  75.  
  76.   /**
  77.    * Looks up the nsHTMLTag enum value corresponding to the tag in aAtom. The
  78.    * lookup happens case insensitively.
  79.    *
  80.    * @param aAtom The tag to look up.
  81.    *
  82.    * @return PRInt32 The nsHTMLTag enum value corresponding to the tag in aAtom
  83.    *                 or eHTMLTag_userdefined if the tag does not correspond to
  84.    *                 any of the tag nsHTMLTag enum values.
  85.    */
  86.   virtual PRInt32 HTMLAtomTagToId(nsIAtom* aAtom) const = 0;
  87.  
  88.   /**
  89.    * Looks up the nsHTMLTag enum value corresponding to the tag in aAtom.
  90.    *
  91.    * @param aAtom The tag to look up.
  92.    *
  93.    * @return PRInt32 The nsHTMLTag enum value corresponding to the tag in aAtom
  94.    *                 or eHTMLTag_userdefined if the tag does not correspond to
  95.    *                 any of the tag nsHTMLTag enum values.
  96.    */
  97.   virtual PRInt32 HTMLCaseSensitiveAtomTagToId(nsIAtom* aAtom) const = 0;
  98.  
  99.   /**
  100.    * Looks up the nsHTMLTag enum value corresponding to the tag in aTag. The
  101.    * lookup happens case insensitively.
  102.    *
  103.    * @param aTag The tag to look up.
  104.    *
  105.    * @return PRInt32 The nsHTMLTag enum value corresponding to the tag in aTag
  106.    *                 or eHTMLTag_userdefined if the tag does not correspond to
  107.    *                 any of the tag nsHTMLTag enum values.
  108.    */
  109.   virtual PRInt32 HTMLStringTagToId(const nsAString& aTag) const = 0;
  110.  
  111.   /**
  112.    * Gets the tag corresponding to the nsHTMLTag enum value in aId. The
  113.    * returned tag will be in lowercase.
  114.    *
  115.    * @param aId The nsHTMLTag enum value to get the tag for.
  116.    *
  117.    * @return const PRUnichar* The tag corresponding to the nsHTMLTag enum
  118.    *                          value, or nsnull if the enum value doesn't
  119.    *                          correspond to a tag (eHTMLTag_unknown,
  120.    *                          eHTMLTag_userdefined, eHTMLTag_text, ...).
  121.    */
  122.   virtual const PRUnichar *HTMLIdToStringTag(PRInt32 aId) const = 0;
  123.  
  124.   /**
  125.    * Gets the tag corresponding to the nsHTMLTag enum value in aId. The
  126.    * returned tag will be in lowercase.
  127.    *
  128.    * @param aId The nsHTMLTag enum value to get the tag for.
  129.    *
  130.    * @return nsIAtom* The tag corresponding to the nsHTMLTag enum value, or
  131.    *                  nsnull if the enum value doesn't correspond to a tag
  132.    *                  (eHTMLTag_unknown, eHTMLTag_userdefined, eHTMLTag_text,
  133.    *                  ...).
  134.    */
  135.   virtual nsIAtom *HTMLIdToAtomTag(PRInt32 aId) const = 0;
  136.   
  137.   NS_IMETHOD HTMLConvertEntityToUnicode(const nsAString& aEntity, 
  138.                                         PRInt32* aUnicode) const = 0;
  139.  
  140.   NS_IMETHOD HTMLConvertUnicodeToEntity(PRInt32 aUnicode,
  141.                                         nsCString& aEntity) const = 0;
  142.  
  143.   NS_IMETHOD IsContainer(PRInt32 aId, PRBool& aIsContainer) const = 0;
  144.   NS_IMETHOD IsBlock(PRInt32 aId, PRBool& aIsBlock) const = 0;
  145.  
  146.   // Observer mechanism
  147.   NS_IMETHOD RegisterObserver(nsIElementObserver* aObserver,
  148.                               const nsAString& aTopic,
  149.                               const eHTMLTags* aTags = nsnull) = 0;
  150.  
  151.   NS_IMETHOD UnregisterObserver(nsIElementObserver* aObserver,
  152.                                 const nsAString& aTopic) = 0;
  153.   NS_IMETHOD GetTopicObservers(const nsAString& aTopic,
  154.                                nsIObserverEntry** aEntry) = 0;
  155.  
  156.   virtual nsresult CheckQName(const nsASingleFragmentString& aQName,
  157.                               PRBool aNamespaceAware,
  158.                               const PRUnichar** aColon) = 0;
  159.   virtual PRBool IsXMLLetter(PRUnichar aChar) = 0;
  160.   virtual PRBool IsXMLNCNameChar(PRUnichar aChar) = 0;
  161. };
  162.  
  163. #endif // nsIParserService_h__
  164.